home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
libs
/
newlooklib.lha
/
newlook
/
moveitext.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-24
|
197b
|
17 lines
/*
* MOVEITEXT.C
*/
#include "newlook.h"
void MoveIText(it, dx,dy)
struct IntuiText *it;
SHORT dx,dy;
{
while(it)
{ it->LeftEdge += dx;
it->TopEdge += dy;
it= it->NextText;
}
}